home *** CD-ROM | disk | FTP | other *** search
/ Network PC / Network PC.iso / amiga utilities / communication / internet / airmail31_mui / install.rexx < prev    next >
Encoding:
OS/2 REXX Batch file  |  1997-11-21  |  578 b   |  27 lines

  1. /* simple ARexx install script
  2.  
  3. -- This script will copy the socket.lib to the lib: directory and
  4.    copy and display program to the c: directory for viewing AirMail
  5.    screen shots.  If you already have newer versions then ignore the
  6.    install script
  7. --
  8. */
  9.  
  10. address command
  11. say 'Creating directory ENVARC:AirMail'
  12. 'makedir ENVARC:AirMail'
  13. say
  14. say 'Copy socket.library v1.0 to Lib: (y/n)'
  15. pull ans
  16. if ans = 'Y' then
  17.   'copy libs/#?.lib lib:'
  18. endif
  19. say;
  20. say 'Copy display v38.9 to C: (y/n)'
  21. pull ans
  22. if ans = 'Y' then
  23.  'copy libs/display c:'
  24. endif
  25.  
  26. say 'Installation Complete.'
  27.